home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / prog / strpchrt.arj / MS.MAK < prev    next >
Text File  |  1993-07-31  |  1KB  |  34 lines

  1. #----------------------------------------------------------------------
  2. # Makefile for Strip Chart LIbrary Example Programs
  3. # This makefile recompiles all the example programs.
  4. #
  5. # Compiler: Microsoft C Version 7.00 Small Memory Model
  6. #
  7. # Note: Microsoft uses the "LIB" and "INCLUDE" environment variables
  8. # to locate the compiler libraries and include files.
  9. #
  10. # Usage: NMAKE /f MS.MAK
  11. #
  12. #----------------------------------------------------------------------
  13.  
  14. # Macro for path of Strip Chart library file
  15. SCLIB = scmss.lib
  16.  
  17. # Macro for compiler and options
  18. # Note: Microsoft uses the "LIB" and "INCLUDE" environment variables
  19. # to locate the compiler libraries and include files.
  20. CC = cl /AS /FPi /DMICROSOFT=1 /Ot
  21.  
  22. # Impilicit rule for compiling example programs
  23. .c.exe: 
  24.         $(CC) $*.c /link $(SCLIB)
  25.  
  26. # Targets and dependencies
  27. all: clean ex_test.exe ex_trace.exe ex_step.exe 
  28.         REM Done!
  29.  
  30. clean:
  31.         del ex_test.exe
  32.         del ex_trace.exe
  33.         del ex_step.exe
  34.